OM^

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - sea number or list [default = 1]
  - b number or list [default = 1]

Description:

Exponentiation of base a and exponent b.

Corresponds to the multiplication of <a> repeated <b> times.
Can be used on numbers or lists.

Ex. (om^ 2 3) => 8
Ex. (om^ 2 '(3 4 5)) => (8 16 32)
Ex. (om^ '(2 3 4) 3) => (8 27 64)
Ex. (om^ '(2 3 4) '(2 3 4)) => (4 27 256)